home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python151_Src.lha / Python1.5_Source / Parser / SMAKEFILE < prev    next >
Text File  |  1998-02-23  |  1KB  |  28 lines

  1.  
  2. OBJECTS = acceler.o grammar1.o myreadline.o node.o parser.o parsetok.o \
  3.         tokenizer.o intrcheck.o 
  4.  
  5. Parser.lib: $(OBJECTS)
  6.     -delete >NIL: Parser.lib
  7.     oml Parser.lib a <@<
  8. $(OBJECTS)
  9. <
  10.  
  11.  
  12. acceler.o : acceler.c parser.h /include/token.h /include/node.h /include/grammar.h /include/pgenheaders.h
  13.  
  14. grammar1.o : grammar1.c /include/token.h /include/grammar.h assert.h /include/pgenheaders.h
  15.  
  16. intrcheck.o : intrcheck.c protos/intrcheck_protos.h /include/intrcheck.h /include/mymalloc.h /include/myproto.h /include/config.h
  17.  
  18. myreadline.o : myreadline.c protos/myreadline_protos.h /include/pythonrun.h /include/intrcheck.h /include/mymalloc.h /include/myproto.h /include/config.h
  19.  
  20. node.o : node.c /include/node.h /include/pgenheaders.h
  21.  
  22. parser.o : parser.c /include/errcode.h parser.h /include/node.h /include/grammar.h /include/token.h assert.h /include/pgenheaders.h
  23.  
  24. parsetok.o : parsetok.c /include/errcode.h /include/parsetok.h parser.h /include/grammar.h /include/node.h tokenizer.h /include/pgenheaders.h /include/token.h
  25.  
  26. tokenizer.o : tokenizer.c /include/errcode.h tokenizer.h /include/pgenheaders.h /include/token.h
  27.  
  28.